home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-stalib.ads < prev    next >
Text File  |  1994-05-19  |  3KB  |  61 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --              S Y S T E M . S T A N D A R D _ L I B R A R Y               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This is a dummy pakage that simply contains with references to the set of
  26. --  packages that are required to be part of every Ada program. A specialized
  27. --  mechanism is required to ensure that these are loaded, since it may be the
  28. --  case in some programs that the only references to these required packages
  29. --  are from C code or from code generated directly by Gigi, an in both cases
  30. --  the binder is not aware of such references.
  31.  
  32. --  The binder unconditionally includes s-stalib.ali, which ensures that this
  33. --  package and the packages it references are included in all Ada programs.
  34.  
  35. with System.Tasking_Soft_Links;
  36. --  Referenced directly from generated code
  37.  
  38. with System.Task_Specific_Data;
  39. --  Referenced directly from exception handling routines
  40.  
  41. with System.Secondary_Stack;
  42. --  Referenced from System.Task_Specific_Data
  43.  
  44. with System;
  45. --  Referenced from System.Secondary_Stack
  46.  
  47. with System.Storage_Elements;
  48. --  Referenced from System.Secondary_Stack
  49.  
  50. with Unchecked_Conversion;
  51. --  Referenced from System.Secondary_Stack and System.Task_Specific_Data
  52.  
  53. with Unchecked_Deallocation;
  54. --  Referenced from System.Secondary_Stack and System.Task_Specific_Data
  55.  
  56. package System.Standard_Library is
  57.  
  58.    pragma Pure;
  59.  
  60. end System.Standard_Library;
  61.